@charset "utf-8";
/* CSS Document */

.topnav {
    background-color: blueviolet;
    overflow: hidden;
  }
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  .topnav a:hover {
    background-color:darkviolet;
    color: pink
}
.topnav a.active {
    background-color: blueviolet;
    color: white;
}
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: blueviolet;
   color: white;
   text-align: center;
}